Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

241
Vistas
How can i change the color if the value is 25? Because the value "<= 50" is taking over with the yellow color of the "25" value

My "Health <= 50" is changing color if it's under 50. But when i hit 25 i wanna change it to red. (Im in Unity, C#) As tagged. I've tried many compbs and researched but aint found any answers. Thanks for reading!

using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class SomethingFunction : MonoBehaviour
{
    [SerializeField] Text Informationsystem;
    public int Health 100;

    void Start()
    {
        TxtUI= GetComponent<Text>();
    }

    void Update()
    {
        Test();
    }

    public void Test()
    {
        if(health <= 50)
        {
            TxtUI.color = Color.yellow;
        }
        else if(health <= 25)
        {
            TxtUI.color = Color.red;
        }
        else if(health >= 50)
        {
            TxtUI.color = Color.white;
        }
    }
}```
over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

Please research how if-else statements work.

The problem here is that if, for example, the health is 19: Then the color will be set to yellow, because 19<50.

Because of the else if statement the other checks are not executed. You can either change the order of if-else statements or remove the else part:

if (health <= 25)
        {
            TxtUI.color = Color.red;
        }
        else if (health <= 50)
        {
            TxtUI.color = Color.yellow;
        }
        else if (health > 50)
        {
            TxtUI.color = Color.white;
        }
over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda